{"version":3,"file":"static/chunks/pages/slots/group/[group]-8ddaffa1c79f00ad.js","sources":["webpack://_N_E/./node_modules/copy-to-clipboard/index.js","webpack://_N_E/./server/config/access.config.js","webpack://_N_E/./src/common/components/seo/AnyJsonLd.tsx","webpack://_N_E/./src/common/components/seo/BreadcrumbDomainJsonLd.tsx","webpack://_N_E/./src/common/components/seo/SlotPageJsonLd.tsx","webpack://_N_E/./src/common/methods/getBreadcrumbs.ts","webpack://_N_E/./src/modules/slots/layouts/SlotGroup.layout.tsx","webpack://_N_E/./src/common/components/seo/SlotGroupPageJsonLd.tsx","webpack://_N_E/./src/pages/slots/group/[group]/index.tsx","webpack://_N_E/?95ea","webpack://_N_E/./node_modules/react-copy-to-clipboard/lib/Component.js","webpack://_N_E/./node_modules/react-copy-to-clipboard/lib/index.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useIsomorphicEffect.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useFreshTick.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useFreshRef.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useWindowEventListener.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/useGlobalObjectEventListener.js","webpack://_N_E/./node_modules/rooks/dist/esm/hooks/warning.js","webpack://_N_E/./node_modules/toggle-selection/index.js","webpack://_N_E/./node_modules/next/dist/compiled/@babel/runtime/helpers/esm/toArray.js"],"sourceRoot":"","sourcesContent":["\"use strict\";\n\nvar deselectCurrent = require(\"toggle-selection\");\n\nvar clipboardToIE11Formatting = {\n \"text/plain\": \"Text\",\n \"text/html\": \"Url\",\n \"default\": \"Text\"\n}\n\nvar defaultMessage = \"Copy to clipboard: #{key}, Enter\";\n\nfunction format(message) {\n var copyKey = (/mac os x/i.test(navigator.userAgent) ? \"⌘\" : \"Ctrl\") + \"+C\";\n return message.replace(/#{\\s*key\\s*}/g, copyKey);\n}\n\nfunction copy(text, options) {\n var debug,\n message,\n reselectPrevious,\n range,\n selection,\n mark,\n success = false;\n if (!options) {\n options = {};\n }\n debug = options.debug || false;\n try {\n reselectPrevious = deselectCurrent();\n\n range = document.createRange();\n selection = document.getSelection();\n\n mark = document.createElement(\"span\");\n mark.textContent = text;\n // avoid screen readers from reading out loud the text\n mark.ariaHidden = \"true\"\n // reset user styles for span element\n mark.style.all = \"unset\";\n // prevents scrolling to the end of the page\n mark.style.position = \"fixed\";\n mark.style.top = 0;\n mark.style.clip = \"rect(0, 0, 0, 0)\";\n // used to preserve spaces and line breaks\n mark.style.whiteSpace = \"pre\";\n // do not inherit user-select (it may be `none`)\n mark.style.webkitUserSelect = \"text\";\n mark.style.MozUserSelect = \"text\";\n mark.style.msUserSelect = \"text\";\n mark.style.userSelect = \"text\";\n mark.addEventListener(\"copy\", function(e) {\n e.stopPropagation();\n if (options.format) {\n e.preventDefault();\n if (typeof e.clipboardData === \"undefined\") { // IE 11\n debug && console.warn(\"unable to use e.clipboardData\");\n debug && console.warn(\"trying IE specific stuff\");\n window.clipboardData.clearData();\n var format = clipboardToIE11Formatting[options.format] || clipboardToIE11Formatting[\"default\"]\n window.clipboardData.setData(format, text);\n } else { // all other browsers\n e.clipboardData.clearData();\n e.clipboardData.setData(options.format, text);\n }\n }\n if (options.onCopy) {\n e.preventDefault();\n options.onCopy(e.clipboardData);\n }\n });\n\n document.body.appendChild(mark);\n\n range.selectNodeContents(mark);\n selection.addRange(range);\n\n var successful = document.execCommand(\"copy\");\n if (!successful) {\n throw new Error(\"copy command was unsuccessful\");\n }\n success = true;\n } catch (err) {\n debug && console.error(\"unable to copy using execCommand: \", err);\n debug && console.warn(\"trying IE specific stuff\");\n try {\n window.clipboardData.setData(options.format || \"text\", text);\n options.onCopy && options.onCopy(window.clipboardData);\n success = true;\n } catch (err) {\n debug && console.error(\"unable to copy using clipboardData: \", err);\n debug && console.error(\"falling back to prompt\");\n message = format(\"message\" in options ? options.message : defaultMessage);\n window.prompt(message, text);\n }\n } finally {\n if (selection) {\n if (typeof selection.removeRange == \"function\") {\n selection.removeRange(range);\n } else {\n selection.removeAllRanges();\n }\n }\n\n if (mark) {\n document.body.removeChild(mark);\n }\n reselectPrevious();\n }\n\n return success;\n}\n\nmodule.exports = copy;\n","const LicenceBlocked = {\n\tUnitedStates: 'US',\n\tAustralia: 'AU',\n\tAustria: 'AT',\n\tComoros: 'KM',\n\tGermany: 'DE',\n\tSpain: 'ES',\n\tUnitedKingdom: 'GB',\n\tNetherlands: 'NL',\n\tFrance: 'FR',\n};\n\nconst BlockedCountries = {\n\tPoland: 'PL',\n\tCuracao: 'CW',\n\tSyria: 'SY',\n\tIran: 'IR',\n\tNorthKorea: 'KP',\n\tCuba: 'CU',\n\tVenezuela: 'VE',\n\tYemen: 'YE',\n\tIraq: 'IQ',\n\tSudan: 'SD',\n\tMyanmar: 'MM',\n};\n\nconst accessConfig = {\n\tblockRegister: [\n\t\tLicenceBlocked.UnitedStates,\n\t\tLicenceBlocked.Australia,\n\t\tLicenceBlocked.Austria,\n\t\tLicenceBlocked.Comoros,\n\t\tLicenceBlocked.Germany,\n\t\tLicenceBlocked.Spain,\n\t\tLicenceBlocked.UnitedKingdom,\n\t\tLicenceBlocked.Netherlands,\n\t\tLicenceBlocked.France,\n\t],\n\tblockPage: [\n\t\t...Object.keys(BlockedCountries).map((el) => BlockedCountries[el]),\n\t],\n\tenableCloudflareRules: false,\n};\n\nmodule.exports = {\n\taccessConfig,\n};\n","import { FC } from 'react';\nimport Head from 'next/head';\nimport { config } from '@legacyApp/client/config';\nimport { StructuredData } from '@legacyApp/types/default/StructuredData';\nimport { socialConfig } from '@server/config/social.config';\nimport { jsonToString } from '@common/methods/jsonToString';\n\ninterface Props extends StructuredData {\n\turl?: string;\n}\n\nexport interface AnyJsonLdProps {\n\tkeyOverride?: string;\n\tprops?: Props;\n}\n\nexport const parseUrlJsonLd = (uri?: string) =>\n\t`https://${config.domain}${uri ?? ''}`;\n\nexport const SAME_AS = Object.keys(socialConfig).map(\n\t(key) => socialConfig[key],\n);\n\nexport const AnyJsonLd: FC<AnyJsonLdProps> = ({ keyOverride, props }) => {\n\tconst url = parseUrlJsonLd(props.url);\n\tconst jslonld = {\n\t\t'@context': 'https://schema.org',\n\t\tname: config.appName,\n\t\turl,\n\t\tmainEntityOfPage: {\n\t\t\t'@type': 'WebPage',\n\t\t\t'@id': `${url}`,\n\t\t},\n\t\t...props,\n\t};\n\n\treturn (\n\t\t<Head>\n\t\t\t<script\n\t\t\t\ttype=\"application/ld+json\"\n\t\t\t\tdangerouslySetInnerHTML={{ __html: jsonToString(jslonld) }}\n\t\t\t\tkey={`jsonld-article${keyOverride ? `-${keyOverride}` : ''}`}\n\t\t\t/>\n\t\t</Head>\n\t);\n};\n","import { BreadcrumbJsonLd } from 'next-seo';\nimport { ItemListElements } from 'next-seo/lib/jsonld/breadcrumb';\nimport { FC } from 'react';\n\nimport { parseUrlJsonLd } from '@common/components/seo/AnyJsonLd';\nimport { simpleTrans } from '@legacyApp/client/modules/translation/translationService';\nimport { BreadcrumbData } from '@common/methods/getBreadcrumbs';\nimport { checkIsTransProps } from '@legacyApp/client/modules/translation/checkIsTransProps';\n\nconst mapBreadcrumbToJsonLd = (item: BreadcrumbData): BreadcrumbData => ({\n\t...item,\n\tname: checkIsTransProps(item.name)\n\t\t? simpleTrans(\n\t\t\t\titem.name.label as string,\n\t\t\t\titem.name?.options,\n\t\t\t\titem.name?.namespace,\n\t\t )\n\t\t: item.name,\n\titem: parseUrlJsonLd(item.item),\n});\n\nexport const BreadcrumbDomainJsonLd: FC<{\n\titemListElements: BreadcrumbData[];\n}> = ({ itemListElements }) => (\n\t<BreadcrumbJsonLd\n\t\tkeyOverride=\"breadcrumbs\"\n\t\titemListElements={\n\t\t\titemListElements.map(mapBreadcrumbToJsonLd) as ItemListElements[]\n\t\t}\n\t/>\n);\n","import { FC } from 'react';\n\nimport { accessConfig } from '@server/config/access.config';\nimport { config } from '@legacyApp/client/config';\nimport { parseImageSrc } from '@common/components/default/Image/Image';\nimport {\n\tAnyJsonLd,\n\tparseUrlJsonLd,\n\tSAME_AS,\n} from '@common/components/seo/AnyJsonLd';\nimport { getBreadcrumb } from '@common/methods/getBreadcrumbs';\nimport { BreadcrumbDomainJsonLd } from '@common/components/seo/BreadcrumbDomainJsonLd';\n\ninterface BreadcrumbListElementType {\n\tposition: number;\n\tname: string;\n\titem: string;\n}\n\nexport const SlotPageAnyJsonLd: FC<{ name: string; slug?: string }> = ({\n\tname,\n\tslug,\n}) => {\n\treturn (\n\t\t<AnyJsonLd\n\t\t\tkeyOverride=\"SoftwareApplication\"\n\t\t\tprops={{\n\t\t\t\t'@type': 'WebApplication',\n\t\t\t\tname: name ?? 'Bitcoin Slot Betting',\n\t\t\t\turl: slug ? `/slots/${slug}` : '/slots',\n\t\t\t\tapplicationCategory: 'GameApplication',\n\t\t\t\toperatingSystem: 'Windows 7, OSX 10.6, Android 1.6',\n\t\t\t\tbrowserRequirements: 'JavaScript, HTML5',\n\t\t\t\tcountriesNotSupported: accessConfig.blockPage.map((el) =>\n\t\t\t\t\tel.toLowerCase(),\n\t\t\t\t),\n\t\t\t\tpotentialAction: {\n\t\t\t\t\t'@type': 'Action',\n\t\t\t\t\tname: 'PlayAction',\n\t\t\t\t},\n\t\t\t\tpublisher: {\n\t\t\t\t\t'@type': 'Organization',\n\t\t\t\t\tname: config.appName,\n\t\t\t\t\tbrand: config.appName,\n\t\t\t\t\turl: parseUrlJsonLd(),\n\t\t\t\t\tlogo: parseImageSrc('/img/logo_black.png'),\n\t\t\t\t\tsameAs: SAME_AS,\n\t\t\t\t},\n\t\t\t}}\n\t\t/>\n\t);\n};\n\nexport const SlotPageJsonLd: FC<{\n\tname: string;\n\tslug?: string;\n\tbreadcrumbsElements?: BreadcrumbListElementType[];\n\tlocale?: string;\n}> = ({ name, slug, breadcrumbsElements, locale }) => {\n\tconst slugElement = [\n\t\tgetBreadcrumb({ locale, position: 2, name, pathname: `/slots/${slug}` }),\n\t];\n\n\treturn (\n\t\t<>\n\t\t\t<SlotPageAnyJsonLd name={name} slug={slug} />\n\n\t\t\t<BreadcrumbDomainJsonLd\n\t\t\t\titemListElements={[\n\t\t\t\t\tgetBreadcrumb({ locale }),\n\t\t\t\t\t...((slug && slugElement) || []),\n\t\t\t\t\t...(breadcrumbsElements || []),\n\t\t\t\t]}\n\t\t\t/>\n\t\t</>\n\t);\n};\n","import { config } from '@legacyApp/client/config';\nimport { getPathLocalized } from '@common/methods/getPathLocalized/getPathLocalized';\nimport { TransProps } from '@legacyApp/client/modules/translation/translate';\n\nexport type BreadcrumbData = {\n\tlocale?: string;\n\tposition?: number;\n\tname?: string | TransProps;\n\tpathname?: string;\n\titem?: string;\n};\n\nexport const getBreadcrumb = ({\n\tlocale,\n\tposition = 1,\n\tname = config.appName,\n\tpathname = '/',\n}: BreadcrumbData) => ({\n\tposition,\n\tname,\n\titem: getPathLocalized({\n\t\tpathname,\n\t\tlocale,\n\t}),\n});\n\nexport const getBreadcrumbs = (locale: string, data: Array<BreadcrumbData>) => [\n\tgetBreadcrumb({ locale }),\n\t...data.map((el, index) =>\n\t\tgetBreadcrumb({\n\t\t\tlocale,\n\t\t\tposition: index + 2,\n\t\t\tname: el.name,\n\t\t\tpathname: el.pathname,\n\t\t}),\n\t),\n];\n","import React, { FC, useCallback, useContext, useEffect, useState } from 'react';\n\nimport { useGetDataArray } from '@legacyApp/hooks/fetch/useGetDataArray';\nimport { SectionsTabNav } from '@common/components/home/SectionsTabNav/SectionsTabNav';\nimport { Loader } from '@legacyApp/client/components/loader/loader';\nimport {\n\tStyledHeaderFilters,\n\tStyledHeaderTitleContainer,\n\tStyledSectionHeader,\n\tStyledSlotContainer,\n} from '@modules/slots/layouts/SlotCategory.layout';\nimport { TransSlots } from '@legacyApp/client/modules/translation/translate';\nimport { SlotGroupPromoBanner } from '@modules/slots/components/SlotsGroupPromoBanner/SlotGroupPromoBanner';\nimport {\n\tSlotsFiltersContainer,\n\tSlotsFiltersContext,\n} from '@modules/slots/components/SlotsFiltersContainer';\nimport { useFetchGames } from '../hooks/useFetchGames';\nimport { StyledListWrapper } from '../components/ListWrapper.styled';\nimport { ProvidersSection } from '../components/ProvidersSection';\nimport { Slot, SlotGroupDTO } from '../store/slots.types';\nimport { TileSlotsGrid } from '../components/TileSlotsGrid';\nimport { NoGames } from '../components/NoGames';\nimport { SlotsFilters } from '../components/SlotsFilters';\nimport { ShowMore } from '../components/ShowMore';\nimport {\n\tDEFAULT_GAMES_PAGE,\n\tGAMES_ON_PAGE,\n} from '../constants/SlotMenu.constants';\nimport { SlotsBreadcrumbs } from '../components/SlotsBreadcrumbs';\n\nexport const SlotGroupLayout_: FC<{ group: SlotGroupDTO }> = ({ group }) => {\n\tconst groupSlug = group?.slug;\n\tconst groupName = group?.name;\n\n\tconst { filterSort } = useContext(SlotsFiltersContext);\n\n\tconst [gamesCount, setGamesCount] = useState(GAMES_ON_PAGE);\n\tconst memoizedSetGamesCount = useCallback(\n\t\t(count) => setGamesCount(count),\n\t\t[],\n\t);\n\tconst [gamesPage, setGamesPage] = useState(DEFAULT_GAMES_PAGE);\n\tconst [dataKey, setDataKey] = useState('');\n\n\tconst { callback } = useFetchGames();\n\n\tconst gamesCallback = useCallback(\n\t\t() =>\n\t\t\tcallback({\n\t\t\t\tcount: gamesCount,\n\t\t\t\tpage: gamesPage,\n\t\t\t\tgroup: !groupSlug ? null : groupSlug,\n\t\t\t\t...(filterSort.value && { orderBy: filterSort.value }),\n\t\t\t}),\n\t\t[gamesCount, callback, groupSlug, filterSort.value, gamesPage],\n\t);\n\n\tconst {\n\t\tdata: list,\n\t\tloaded,\n\t\tcount,\n\t\tloading,\n\t} = useGetDataArray<Slot>(`${dataKey}${gamesPage}`, gamesCallback);\n\n\tconst showMoreHandler = () => {\n\t\tsetGamesPage((prevGamesPage) => prevGamesPage + 1);\n\t};\n\n\tuseEffect(() => {\n\t\tconst dataKey_ = `group,${groupSlug},${gamesCount},${filterSort.value}`;\n\t\tif (dataKey_ !== dataKey) {\n\t\t\tsetGamesPage(DEFAULT_GAMES_PAGE);\n\t\t\tsetDataKey(dataKey_);\n\t\t}\n\t}, [groupSlug, groupName, dataKey, filterSort.value, gamesCount]);\n\n\treturn (\n\t\t<StyledSlotContainer>\n\t\t\t<SlotGroupPromoBanner slug={groupSlug} enableDetails />\n\t\t\t<SectionsTabNav activeTabId={group.slug} />\n\t\t\t<StyledSectionHeader>\n\t\t\t\t<StyledHeaderTitleContainer>\n\t\t\t\t\t<SlotsBreadcrumbs\n\t\t\t\t\t\tshowGroup\n\t\t\t\t\t\ttitle={<TransSlots label={groupName} />}\n\t\t\t\t\t/>\n\t\t\t\t</StyledHeaderTitleContainer>\n\n\t\t\t\t<StyledHeaderFilters>\n\t\t\t\t\t<SlotsFilters name={groupName} />\n\t\t\t\t</StyledHeaderFilters>\n\t\t\t</StyledSectionHeader>\n\n\t\t\t<StyledListWrapper>\n\t\t\t\t<Loader active={loading} />\n\t\t\t\t{list?.length === 0 && loaded && !loading && <NoGames />}\n\t\t\t\t<TileSlotsGrid\n\t\t\t\t\tsetGamesCount={memoizedSetGamesCount}\n\t\t\t\t\titems={list}\n\t\t\t\t\tloaded={loaded}\n\t\t\t\t/>\n\t\t\t\t{!!loaded && list.length > 0 && (\n\t\t\t\t\t<ShowMore\n\t\t\t\t\t\tdisplayingGames={list.length}\n\t\t\t\t\t\tallGames={count}\n\t\t\t\t\t\tshowMore={showMoreHandler}\n\t\t\t\t\t/>\n\t\t\t\t)}\n\t\t\t</StyledListWrapper>\n\t\t\t<ProvidersSection />\n\t\t</StyledSlotContainer>\n\t);\n};\n\nexport const SlotGroupLayout: typeof SlotGroupLayout_ = (props) => {\n\treturn (\n\t\t<SlotsFiltersContainer>\n\t\t\t<SlotGroupLayout_ {...props} />\n\t\t</SlotsFiltersContainer>\n\t);\n};\n","import { FC } from 'react';\n\nimport { SlotPageAnyJsonLd } from '@common/components/seo/SlotPageJsonLd';\nimport { getBreadcrumbs } from '@common/methods/getBreadcrumbs';\nimport { BreadcrumbDomainJsonLd } from '@common/components/seo/BreadcrumbDomainJsonLd';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\n\nexport const SlotGroupPageJsonLd: FC<{\n\tname: string;\n\tslug?: string;\n\tlocale?: string;\n}> = ({ name, slug, locale }) => (\n\t<>\n\t\t<SlotPageAnyJsonLd name={name} slug={slug} />\n\n\t\t<BreadcrumbDomainJsonLd\n\t\t\titemListElements={getBreadcrumbs(locale, [\n\t\t\t\t{\n\t\t\t\t\tname: { label: 'Group', namespace: TransNamespace.SLOTS },\n\t\t\t\t\tpathname: '/slots/group/all',\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tname,\n\t\t\t\t\tpathname: `/slots/group/${slug}`,\n\t\t\t\t},\n\t\t\t])}\n\t\t/>\n\t</>\n);\n","import React from 'react';\n\nimport { pageEnhancer } from '@common/hoc/pageEnhancer';\nimport { getStaticPathsWrapper } from '@legacyApp/methods/getStaticPaths/getStaticPaths';\nimport { handleGetStaticProps } from '@legacyApp/methods/router/handleGetStaticProps';\nimport { DEFAULT_NAMESPACE } from '@legacyApp/client/modules/translation/translate.constants';\nimport { simpleTrans } from '@legacyApp/client/modules/translation/translationService';\nimport { TransNamespace } from '@legacyApp/client/modules/translation/TransNamespace';\nimport { SLOTS_PAGE_ID } from '@modules/slots/constants/slots.page.config';\nimport Seo from '@common/components/default/Seo/Seo';\nimport { MainLayout } from '@legacyApp/client/components/mainLayout';\nimport { getGroupPageData } from '@modules/cmsHandler/methods/getGroupPageData';\nimport { SlotGroupLayout } from '@modules/slots/layouts/SlotGroup.layout';\nimport { getPathLocalized } from '@common/methods/getPathLocalized/getPathLocalized';\nimport { SlotGroupPageJsonLd } from '@common/components/seo/SlotGroupPageJsonLd';\n\nconst PAGE_ID = SLOTS_PAGE_ID.GROUP;\n\nexport async function getStaticProps(props) {\n\tconst { page_content, slug, name } = await getGroupPageData(\n\t\tprops.params.group,\n\t\tprops.locale,\n\t);\n\n\tif (!slug) {\n\t\treturn {\n\t\t\tredirect: {\n\t\t\t\tdestination: getPathLocalized({\n\t\t\t\t\tpathname: '/slots/slot-games',\n\t\t\t\t\tlocale: props.locale,\n\t\t\t\t}),\n\t\t\t\tstatusCode: 301,\n\t\t\t},\n\t\t};\n\t}\n\n\tconst noIndex = false;\n\n\treturn await handleGetStaticProps(\n\t\t{\n\t\t\tlocale: props.locale,\n\t\t\tparams: {\n\t\t\t\t...props.params,\n\t\t\t\tgroupData: {\n\t\t\t\t\tslug: slug || null,\n\t\t\t\t\tname: name || null,\n\t\t\t\t},\n\t\t\t\tnoIndex,\n\t\t\t\tpage_content,\n\t\t\t},\n\t\t},\n\t\t[DEFAULT_NAMESPACE, TransNamespace.SLOTS],\n\t\ttrue,\n\t);\n}\n\nexport async function getStaticPaths(params) {\n\treturn getStaticPathsWrapper(params);\n}\n\nconst SlotsGroup = (context) => {\n\tconst { params, locale } = context;\n\tconst { groupData } = params;\n\n\treturn (\n\t\t<>\n\t\t\t<Seo\n\t\t\t\ttitle={PAGE_ID}\n\t\t\t\ttitleProps={{\n\t\t\t\t\tsection_name: simpleTrans(\n\t\t\t\t\t\tgroupData?.name,\n\t\t\t\t\t\tundefined,\n\t\t\t\t\t\tTransNamespace.SLOTS,\n\t\t\t\t\t),\n\t\t\t\t}}\n\t\t\t\tprops={{\n\t\t\t\t\tnoindex: params.noIndex,\n\t\t\t\t\tnofollow: params.noIndex,\n\t\t\t\t}}\n\t\t\t\tpageParams={params}\n\t\t\t/>\n\n\t\t\t<SlotGroupPageJsonLd\n\t\t\t\tname={groupData?.name}\n\t\t\t\tslug={groupData.slug}\n\t\t\t\tlocale={locale}\n\t\t\t/>\n\n\t\t\t<MainLayout v2>\n\t\t\t\t<SlotGroupLayout group={groupData} />\n\t\t\t</MainLayout>\n\t\t</>\n\t);\n};\n\nexport default pageEnhancer(SlotsGroup, {\n\tid: PAGE_ID,\n\tnoSeo: true,\n});\n","\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/slots/group/[group]\",\n function () {\n return require(\"private-next-pages/slots/group/[group]/index.tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/slots/group/[group]\"])\n });\n }\n ","\"use strict\";\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.CopyToClipboard = void 0;\n\nvar _react = _interopRequireDefault(require(\"react\"));\n\nvar _copyToClipboard = _interopRequireDefault(require(\"copy-to-clipboard\"));\n\nvar _excluded = [\"text\", \"onCopy\", \"options\", \"children\"];\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \"default\": obj }; }\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar CopyToClipboard = /*#__PURE__*/function (_React$PureComponent) {\n _inherits(CopyToClipboard, _React$PureComponent);\n\n var _super = _createSuper(CopyToClipboard);\n\n function CopyToClipboard() {\n var _this;\n\n _classCallCheck(this, CopyToClipboard);\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n _this = _super.call.apply(_super, [this].concat(args));\n\n _defineProperty(_assertThisInitialized(_this), \"onClick\", function (event) {\n var _this$props = _this.props,\n text = _this$props.text,\n onCopy = _this$props.onCopy,\n children = _this$props.children,\n options = _this$props.options;\n\n var elem = _react[\"default\"].Children.only(children);\n\n var result = (0, _copyToClipboard[\"default\"])(text, options);\n\n if (onCopy) {\n onCopy(text, result);\n } // Bypass onClick if it was present\n\n\n if (elem && elem.props && typeof elem.props.onClick === 'function') {\n elem.props.onClick(event);\n }\n });\n\n return _this;\n }\n\n _createClass(CopyToClipboard, [{\n key: \"render\",\n value: function render() {\n var _this$props2 = this.props,\n _text = _this$props2.text,\n _onCopy = _this$props2.onCopy,\n _options = _this$props2.options,\n children = _this$props2.children,\n props = _objectWithoutProperties(_this$props2, _excluded);\n\n var elem = _react[\"default\"].Children.only(children);\n\n return /*#__PURE__*/_react[\"default\"].cloneElement(elem, _objectSpread(_objectSpread({}, props), {}, {\n onClick: this.onClick\n }));\n }\n }]);\n\n return CopyToClipboard;\n}(_react[\"default\"].PureComponent);\n\nexports.CopyToClipboard = CopyToClipboard;\n\n_defineProperty(CopyToClipboard, \"defaultProps\", {\n onCopy: undefined,\n options: undefined\n});","\"use strict\";\n\nvar _require = require('./Component'),\n CopyToClipboard = _require.CopyToClipboard;\n\nCopyToClipboard.CopyToClipboard = CopyToClipboard;\nmodule.exports = CopyToClipboard;","import { useEffect, useLayoutEffect } from 'react';\n/**\n * useIsomorphicEffect\n * Resolves to useEffect when \"window\" is not in scope and useLayout effect in the browser\n *\n * @param {Function} callback Callback function to be called on mount\n */\nvar useIsomorphicEffect = typeof window === 'undefined' ? useEffect : useLayoutEffect;\nexport { useIsomorphicEffect };\n","import { useFreshRef } from \"./useFreshRef\";\nfunction useFreshTick(callback) {\n var freshRef = useFreshRef(callback);\n function tick() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (typeof freshRef.current === \"function\") {\n freshRef.current.apply(freshRef, args);\n }\n }\n return tick;\n}\nexport { useFreshTick };\n","import { useEffect, useRef } from \"react\";\nimport { useIsomorphicEffect } from \"./useIsomorphicEffect\";\n/**\n * useFreshRef\n *\n * @param value The value which needs to be fresh at all times. Probably\n * best used with functions\n * @param preferLayoutEffect Should the value be updated using a layout effect\n * or a passive effect. Defaults to false.\n * @returns A ref containing the fresh value\n */\nfunction useFreshRef(value, preferLayoutEffect) {\n if (preferLayoutEffect === void 0) { preferLayoutEffect = false; }\n var useEffectToUse = preferLayoutEffect ? useIsomorphicEffect : useEffect;\n var ref = useRef(value);\n useEffectToUse(function () {\n ref.current = value;\n });\n return ref;\n}\nexport { useFreshRef };\n","import { useGlobalObjectEventListener } from \"./useGlobalObjectEventListener\";\n/**\n * useWindowEventListener hook\n *\n * A react hook to an event listener to the window\n *\n * @param {string} eventName The event to track\n * @param {Function} callback The callback to be called on event\n * @param {ListenerOptions} listenerOptions The options to be passed to the event listener\n * @param {boolean} isLayoutEffect Should it use layout effect. Defaults to false\n * @returns {undefined}\n */\nfunction useWindowEventListener(eventName, callback, listenerOptions, isLayoutEffect) {\n if (listenerOptions === void 0) { listenerOptions = {}; }\n if (isLayoutEffect === void 0) { isLayoutEffect = false; }\n useGlobalObjectEventListener(window, eventName, callback, listenerOptions, true, isLayoutEffect);\n}\nexport { useWindowEventListener };\n","import { useEffect } from \"react\";\nimport { useFreshTick } from \"./useFreshTick\";\nimport { useIsomorphicEffect } from \"./useIsomorphicEffect\";\nimport { warning } from \"./warning\";\n/**\n * useGlobalObjectEventListener hook\n *\n * A react hook to an event listener to a global object\n *\n * @param {Window|Document} globalObject The global object to add event onto\n * @param {string} eventName The event to track\n * @param {Function} callback The callback to be called on event\n * @param {ListenerOptions} listenerOptions The options to be passed to the event listener\n * @param {boolean} when Should the event listener be active\n * @param {boolean} isLayoutEffect Should it use layout effect. Defaults to false\n * @returns {undefined}\n */\nfunction useGlobalObjectEventListener(globalObject, eventName, callback, listenerOptions, when, isLayoutEffect) {\n if (listenerOptions === void 0) { listenerOptions = {}; }\n if (when === void 0) { when = true; }\n if (isLayoutEffect === void 0) { isLayoutEffect = false; }\n var freshCallback = useFreshTick(callback);\n var useEffectToRun = isLayoutEffect ? useIsomorphicEffect : useEffect;\n useEffectToRun(function () {\n warning(typeof globalObject !== \"undefined\", \"[useGlobalObjectEventListener]: Cannot attach event handlers to undefined.\");\n if (typeof globalObject !== \"undefined\" && when) {\n globalObject.addEventListener(eventName, freshCallback, listenerOptions);\n return function () {\n globalObject.removeEventListener(eventName, freshCallback, listenerOptions);\n };\n }\n return function () { };\n }, [eventName, listenerOptions]);\n}\nexport { useGlobalObjectEventListener };\n","var isDevelopmentEnvironment = process.env.NODE_ENV !== \"production\";\n// eslint-disable-next-line import/no-mutable-exports\nvar warning = function () { };\nif (isDevelopmentEnvironment) {\n var printWarning_1 = function (actualMessage) {\n var message = \"Warning: \".concat(actualMessage);\n if (typeof console !== \"undefined\") {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the call site that caused this warning to fire.\n throw new Error(message);\n // eslint-disable-next-line no-empty\n }\n catch (_a) { }\n };\n warning = function (condition, actualMessage) {\n if (!condition) {\n printWarning_1(actualMessage);\n }\n };\n}\nexport { warning };\n","\nmodule.exports = function () {\n var selection = document.getSelection();\n if (!selection.rangeCount) {\n return function () {};\n }\n var active = document.activeElement;\n\n var ranges = [];\n for (var i = 0; i < selection.rangeCount; i++) {\n ranges.push(selection.getRangeAt(i));\n }\n\n switch (active.tagName.toUpperCase()) { // .toUpperCase handles XHTML\n case 'INPUT':\n case 'TEXTAREA':\n active.blur();\n break;\n\n default:\n active = null;\n break;\n }\n\n selection.removeAllRanges();\n return function () {\n selection.type === 'Caret' &&\n selection.removeAllRanges();\n\n if (!selection.rangeCount) {\n ranges.forEach(function(range) {\n selection.addRange(range);\n });\n }\n\n active &&\n active.focus();\n };\n};\n","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArray from \"./iterableToArray.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nexport default function _toArray(arr) {\n return arrayWithHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableRest();\n}"],"names":["deselectCurrent","clipboardToIE11Formatting","module","exports","text","options","debug","message","reselectPrevious","range","selection","mark","success","document","createRange","getSelection","createElement","textContent","ariaHidden","style","all","position","top","clip","whiteSpace","webkitUserSelect","MozUserSelect","msUserSelect","userSelect","addEventListener","e","stopPropagation","format","preventDefault","clipboardData","console","warn","window","clearData","setData","onCopy","body","appendChild","selectNodeContents","addRange","execCommand","Error","err","error","copyKey","test","navigator","userAgent","replace","prompt","removeRange","removeAllRanges","removeChild","BlockedCountries","Poland","Curacao","Syria","Iran","NorthKorea","Cuba","Venezuela","Yemen","Iraq","Sudan","Myanmar","accessConfig","blockRegister","blockPage","Object","keys","map","el","enableCloudflareRules","parseUrlJsonLd","uri","config","SAME_AS","socialConfig","key","AnyJsonLd","keyOverride","props","url","jslonld","name","mainEntityOfPage","type","dangerouslySetInnerHTML","__html","jsonToString","mapBreadcrumbToJsonLd","item","checkIsTransProps","simpleTrans","label","namespace","BreadcrumbDomainJsonLd","itemListElements","SlotPageAnyJsonLd","slug","applicationCategory","operatingSystem","browserRequirements","countriesNotSupported","toLowerCase","potentialAction","publisher","brand","logo","parseImageSrc","sameAs","SlotPageJsonLd","breadcrumbsElements","locale","slugElement","getBreadcrumb","pathname","getPathLocalized","getBreadcrumbs","data","index","SlotGroupLayout_","group","groupSlug","groupName","filterSort","useContext","SlotsFiltersContext","useState","GAMES_ON_PAGE","gamesCount","setGamesCount","memoizedSetGamesCount","useCallback","count","DEFAULT_GAMES_PAGE","gamesPage","setGamesPage","dataKey","setDataKey","callback","useFetchGames","gamesCallback","page","value","orderBy","useGetDataArray","list","loaded","loading","useEffect","dataKey_","SlotGroupPromoBanner","enableDetails","SectionsTabNav","activeTabId","SlotsBreadcrumbs","showGroup","title","SlotsFilters","active","length","NoGames","TileSlotsGrid","items","ShowMore","displayingGames","allGames","showMore","prevGamesPage","ProvidersSection","SlotGroupLayout","SlotsFiltersContainer","SlotGroupPageJsonLd","TransNamespace","PAGE_ID","SLOTS_PAGE_ID","pageEnhancer","context","params","groupData","Seo","titleProps","section_name","undefined","noindex","noIndex","nofollow","pageParams","v2","id","noSeo","__NEXT_P","push","_typeof","obj","Symbol","iterator","constructor","prototype","defineProperty","CopyToClipboard","_react","_interopRequireDefault","_copyToClipboard","_excluded","__esModule","ownKeys","object","enumerableOnly","getOwnPropertySymbols","symbols","filter","sym","getOwnPropertyDescriptor","enumerable","apply","_objectSpread","target","i","arguments","source","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","_objectWithoutProperties","excluded","sourceKeys","indexOf","_objectWithoutPropertiesLoose","sourceSymbolKeys","propertyIsEnumerable","call","_classCallCheck","instance","Constructor","TypeError","_defineProperties","descriptor","configurable","writable","_setPrototypeOf","o","p","setPrototypeOf","__proto__","_createSuper","Derived","hasNativeReflectConstruct","Reflect","construct","sham","Proxy","Boolean","valueOf","_isNativeReflectConstruct","result","Super","_getPrototypeOf","NewTarget","this","_possibleConstructorReturn","self","_assertThisInitialized","ReferenceError","getPrototypeOf","_React$PureComponent","subClass","superClass","create","_inherits","protoProps","staticProps","_super","_this","_len","args","Array","_key","concat","event","_this$props","children","elem","Children","only","onClick","_this$props2","cloneElement","PureComponent","useIsomorphicEffect","useLayoutEffect","useFreshTick","freshRef","preferLayoutEffect","useEffectToUse","ref","useRef","current","useFreshRef","_i","useWindowEventListener","eventName","listenerOptions","isLayoutEffect","globalObject","when","freshCallback","warning","removeEventListener","useGlobalObjectEventListener","rangeCount","activeElement","ranges","getRangeAt","tagName","toUpperCase","blur","focus","_toArray","arr"],"mappings":"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","debug_id":"359c7285-30ba-5757-96f7-b1017d235d14"}